DECLARE @Id Int                               
Select @Id = Id From sysobjects Where Name = 'TblQueue'
if not Exists(SELECT * FROM syscolumns WHERE id = @Id and Name = 'Reservation')
  Alter Table TblQueue Add Reservation SMALLINT DEFAULT(0) NOT Null